home *** CD-ROM | disk | FTP | other *** search
Text File | 1987-06-17 | 9.8 KB | 237 lines | [TEXT/ttxt] |
- 00001 REM __________________ ZBasic™ Array Writing Demo ______________________
- 00002 REM Configuration: Convert to Uppercase, Spaces Required
- 00003 REM Locate X,Y (Vertical, Horizontal)
- 00004 REM Default Variable: INTEGER
- 00005 REM Double Precision (#) = 12
- 00006 REM Single " (!) = 6
- 00007 REM Array Base = 0
- 00008 REM Rounding Number = 49
- 00009 REM Maximum Files Open = 2
- 00010 REM _______________________________________________________________
- 00011 REM A ZBASIC program demonstrating the speed differences between
- 00012 REM writing a text file and writing a block of memory to disk.
- 00013 REM
- 00014 REM
- 00015 REM
- 00016 REM
- 00017 REM Created with ZBASIC compiler by Zedcor, Inc.
- 00018 REM Portions of the resulting object code
- 00019 REM are copyrighted (c) by Zedcor, Inc.
- 00020 REM
- 00021 DEF MOUSE 1
- 00022 COORDINATE WINDOW
- 00023 IF PEEK(&28E) AND 128 THEN NewROMS = 0 ELSE NewROMS = TRUE
- 00024 WINDOW 1,"",(1,1)-(2,2),1: REM This will definitly close the default
- 00025 WINDOW CLOSE 1: REM window every time.
- 00026 DIM Large_Array(5001)
- 00027 GOSUB "Set Up Variables"
- 00028 Wndo_Numbr = 4: Wndo_Type = 2: XL = 290: YT = 35: XR = 500: YB = 95
- 00029 Wndo$ = "": GOSUB "Open a Window": LOCATE 0,0
- 00030 PRINT "A Program that answers the"
- 00031 PRINT " proverbial question…": CALL MOVETO (25,50)
- 00032 TEXT 0,12
- 00033 PRINT "Is there a faster way?";: TEXT 4,9,0
- 00034 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00035 "Set up a Menu"
- 00036 MENU 1,0,1,"Array Writing Demo"
- 00037 MENU 1,1,1,"/AArray Create
- 00038 MENU 1,2,Array_Set,"/RRead-Write"
- 00039 MENU 1,3,Array_Set,"/BBSave-Bload"
- 00040 MENU 1,5,1,"/QQuit"
- 00041 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00042 "Turn On Event Trapping"
- 00043 ON BREAK GOSUB "Break Out"
- 00044 ON MENU GOSUB "Menu Event"
- 00045 ON DIALOG GOSUB "Dialog Event"
- 00046 BREAK ON: REM This can be removed after program runs properly.
- 00047 MENU ON: DIALOG ON
- 00048 REM _______________________________________________________________
- 00049 "Loop"
- 00050 DO: D = DIALOG(0)
- 00051 IF D > 0 THEN GOSUB "D Event"
- 00052 UNTIL D = 0
- 00053 GOTO "Loop"
- 00054 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00055 "Break Out"
- 00056 STOP
- 00057 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00058 "Menu Event"
- 00059 Menu_Number = MENU(0)
- 00060 Menu_Item = MENU(1)
- 00061 MENU
- 00062 DIALOG OFF: REM These '…OFF' statements should not be used at this
- 00063 MENU OFF: REM location since they ONLY turn off the traps for the lines
- 00064 BREAK OFF: REM physically between the 'OFF' and the 'ON'.
- 00065 ON Menu_Number GOSUB "Menu 1"
- 00066 DIALOG ON: MENU ON: BREAK ON
- 00067 RETURN
- 00068 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00069 "Dialog Event"
- 00070 D = DIALOG(0)
- 00071 "D Event"
- 00072 DIALOG OFF
- 00073 MENU OFF
- 00074 BREAK OFF
- 00075 ON D GOSUB "Button Event", "DUMMY Item", "Inactive Window"
- 00076 DIALOG ON: MENU ON: BREAK ON
- 00077 RETURN
- 00078 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00079 "Menu 1"
- 00080 BUTTON CLOSE 1: BUTTON CLOSE 2: BUTTON CLOSE 3
- 00081 ON Menu_Item GOSUB "Reset Array", "For/Next", "Bsave/BLoad", "DUMMY Item", "Quit"
- 00082 RETURN
- 00083 REM _______________________________________________________________
- 00084 "Reset Array"
- 00085 BREAK OFF: REM Put a 'REM' in front of any of these 3 '…OFF' statement
- 00086 DIALOG OFF: REM to see the difference it makes to do this computation !
- 00087 MENU OFF
- 00088 IF Wndo1_Open = 1 THEN WINDOW 1
- 00089 Wndo_Numbr = 1: Wndo_Type = 3: XL = 5: YT = 35: XR = 250: YB = 95
- 00090 Wndo$ = "Calculating 5000 element Integer Array…"
- 00091 IF Wndo1_Open = 0 THEN GOSUB "Open a Window": Wndo1_Open = 1
- 00092 CURSOR 4: RANDOM: Seed = TIMER
- 00093 FOR X = 1 TO 5000
- 00094 Large_Array(X) = RND(Seed)
- 00095 NEXT
- 00096 CURSOR 0
- 00097 LONG IF Array_Set = 0
- 00098 Array_Set = 1
- 00099 MENU 1,1,1,"Array ReSet"
- 00100 MENU 1,2,Array_Set
- 00101 MENU 1,3,Array_Set
- 00102 END IF
- 00103 CLS
- 00104 PRINT "Values created …"
- 00105 GOSUB "Print some of the Array"
- 00106 RETURN
- 00107 REM _______________________________________________________________
- 00108 "For/Next"
- 00109 Operation = 1: IF Wndo2_Open = 1 THEN WINDOW 2
- 00110 Wndo_Numbr = 2: Wndo_Type = 3: XL = 5: YT = 125: XR = 250: YB = 335
- 00111 Wndo$ = "Results for a FOR/NEXT Read/Write"
- 00112 IF Wndo2_Open = 0 THEN GOSUB "Open a Window": Wndo2_Open = 1
- 00113 BUTTON 1, Array_Set, "Write", (10,20)-(80,40), 1
- 00114 BUTTON 2, Array_Written, "Read", (100,20)-(160,40), 1
- 00115 BUTTON 3, 1, "Cancel", (180,20)-(235,40), 1
- 00116 RETURN
- 00117 REM _______________________________________________________________
- 00118 "Bsave/BLoad"
- 00119 Operation = 2: IF Wndo3_Open = 1 THEN WINDOW 3
- 00120 Wndo_Numbr = 3: Wndo_Type = 3: XL = 255: YT = 125: XR = 500: YB = 335
- 00121 Wndo$ = "Results for a BSave/BLoad"
- 00122 IF Wndo3_Open = 0 THEN GOSUB "Open a Window": Wndo3_Open = 1
- 00123 BUTTON 1, Array_Set, "BSave", (10,20)-(80,40), 1
- 00124 BUTTON 2, Array_BSaved, "BLoad", (100,20)-(150,40), 1
- 00125 BUTTON 3, 1, "Cancel", (180,20)-(235,40), 1
- 00126 RETURN
- 00127 REM _______________________________________________________________
- 00128 "DUMMY Item": REM Program never really gets here.
- 00129 REM _______________________________________________________________
- 00130 "Quit"
- 00131 END
- 00132 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00133 "Slow Read/Write"
- 00134 ON Button_Clicked GOSUB "Write For/Next", "Read For/Next", "Continue"
- 00135 RETURN
- 00136 REM _______________________________________________________________
- 00137 "Quik Save/Load"
- 00138 ON Button_Clicked GOSUB "BSave", "BLoad", "Continue"
- 00139 RETURN
- 00140 REM _______________________________________________________________
- 00141 "Continue"
- 00142 RETURN
- 00143 REM _______________________________________________________________
- 00144 "Write For/Next"
- 00145 Start& = TIMER: CURSOR 4
- 00146 OPEN "O", #1, "A For Next File"
- 00147 FOR X = 1 TO 5000
- 00148 WRITE #1, Large_Array(X)
- 00149 NEXT
- 00150 CLOSE #1
- 00151 End_Time& = TIMER: CURSOR 0: Array_Written = 1
- 00152 LOCATE 0,5: PRINT "Values ";: TEXT ,,1
- 00153 PRINT "Written";: TEXT ,,0
- 00154 PRINT " with a FOR/NEXT loop…"
- 00155 GOSUB "Print some of the Array"
- 00156 PRINT: PRINT "Total Time ="End_Time& - Start&
- 00157 RETURN
- 00158 REM _______________________________________________________________
- 00159 "Read For/Next"
- 00160 Start& = TIMER: CURSOR 4
- 00161 OPEN "I", #1, "A For Next File"
- 00162 FOR X = 1 TO 5000
- 00163 READ #1, Large_Array(X)
- 00164 NEXT
- 00165 CLOSE #1
- 00166 End_Time& = TIMER: CURSOR 0
- 00167 LOCATE 0,12: PRINT "Values ";: TEXT ,,1
- 00168 PRINT "Read";: TEXT ,,0
- 00169 PRINT " with a FOR/NEXT loop…"
- 00170 GOSUB "Print some of the Array"
- 00171 PRINT: PRINT "Total Time ="End_Time& - Start&
- 00172 RETURN
- 00173 REM _______________________________________________________________
- 00174 "BSave"
- 00175 Start& = TIMER: CURSOR 4
- 00176 OPEN "O", #2, "A BSaved File"
- 00177 WRITE FILE #2, Source_Address&, Bytes&
- 00178 CLOSE #2
- 00179 End_Time& = TIMER: CURSOR 0: Array_BSaved = 1: BUTTON 2,1
- 00180 LOCATE 0,5: PRINT "Values ";: TEXT ,,1
- 00181 PRINT "BSAVEd";: TEXT ,,0: PRINT " …"
- 00182 GOSUB "Print some of the Array"
- 00183 PRINT: PRINT "Total Time ="End_Time& - Start&
- 00184 Array_BSaved = 1
- 00185 RETURN
- 00186 REM _______________________________________________________________
- 00187 "BLoad"
- 00188 Start& = TIMER: CURSOR 4
- 00189 OPEN "I", #2, "A BSaved File"
- 00190 READ FILE #2, Source_Address&, Bytes&
- 00191 CLOSE #2
- 00192 End_Time& = TIMER: CURSOR 0
- 00193 LOCATE 0,12: PRINT "Values ";: TEXT ,,1
- 00194 PRINT "BLOADed";: TEXT ,,0: PRINT " …"
- 00195 GOSUB "Print some of the Array"
- 00196 PRINT: PRINT "Total Time ="End_Time& - Start&
- 00197 RETURN
- 00198 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00199 "Open a Window"
- 00200 WINDOW Wndo_Numbr,"",(XL,YT)-(XR,YB),Wndo_Type
- 00201 TEXT ,,,0: IF Operation > 0 THEN TEXT 0,12,,
- 00202 LOCATE 0,0: PRINT Wndo$: TEXT 4,9,,
- 00203 RETURN
- 00204 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00205 "Print some of the Array"
- 00206 PRINT "Elements "USING Print_Using$;1;USING Print_Using$;10;USING Print_Using$;1000
- 00207 PRINT " values "USING Print_Using$;Large_Array( 1 );USING Print_Using$;Large_Array( 10 );USING Print_Using$;Large_Array( 1000 )
- 00208 PRINT "Elements "USING Print_Using$;0;USING Print_Using$;2500;USING Print_Using$;5000"
- 00209 PRINT " values "USING Print_Using$;Large_Array( 0 );USING Print_Using$;Large_Array( 2500 );USING Print_Using$;Large_Array( 5000 );
- 00210 RETURN
- 00211 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00212 "DIALOG Events"
- 00213 REM _______________________________________________________________
- 00214 "Button Event"
- 00215 Button_Clicked = DIALOG(1)
- 00216 ON Operation GOSUB "Slow Read/Write", "Quik Save/Load"
- 00217 BUTTON CLOSE 1: BUTTON CLOSE 2: BUTTON CLOSE 3
- 00218 Operation = 0
- 00219 RETURN
- 00220 REM _______________________________________________________________
- 00221 "Inactive Window"
- 00222 Wndo_Selected = DIALOG(3) - 1
- 00223 BUTTON CLOSE 1: BUTTON CLOSE 2: BUTTON CLOSE 3
- 00224 ON Wndo_Selected GOSUB "For/Next","Bsave/BLoad"
- 00225 RETURN
- 00226 REM ///////////////////////////////.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
- 00227 "Set Up Variables"
- 00228 Source_Address& = VARPTR( Large_Array(0)): Bytes& = 10002
- 00229 First_Num = 0: D = 0: X = 0: Array_Set = 0: Window_Open = 0
- 00230 Array_Written = 0: Array_BSaved = 0: Operation = 0
- 00231 Menu_Number = 0: Menu_Item = 0: D = 0: Button_Clicked = 0
- 00232 Wndo_Numbr = 0: Wndo_Type = 0: XL = 0: YT = 0: XR = 0: YB = 0
- 00233 Wndo1_Open = 0: Wndo2_Open = 0: Wndo3_Open = 0
- 00234 End_Time& = 0: Start& = 0: Seed = 0
- 00235 Print_Using$ = "########": Wndo$ = ""
- 00236 RETURN